home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-12-05 | 467 b | 22 lines |
-
- # from the libnixV1_1.lha archive (aminet):
- INCLUDE = -I/ADE/local/libnix/sources/headers
-
- OBJS = /ADE/lib/libnix/libinit.o shutdown_library.o
- LIBS = -lamiga -lnix
- LIBFLAGS = -nostdlib -noixemul -O2 -fbaserel -msmall-code -fomit-frame-pointer
-
- all: shutdown.library
-
- .c.o:
- gcc $(LIBFLAGS) $(INCLUDE) $*.c -c -o $*.o
-
- shutdown.library: $(OBJS)
- gcc $(LIBFLAGS) $(OBJS) -o $@ $(LIBS)
-
- clean:
- delete \#?.o libs:shutdown.library
-
- install:
- copy shutdown.library libs:
-